home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 5_9.lha / 5_9 / tstrand.c < prev   
Text File  |  1993-08-08  |  337b  |  20 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. ifdef __cplusplus
  6. xtern "C" {
  7. endif
  8. xtern int rand();
  9. xtern void srand(unsigned int);
  10. ifdef __cplusplus
  11.  
  12. endif
  13.  
  14. nt randint(int u)
  15.  
  16.    int r = rand();
  17.    if (r < 0) r = -r;
  18.    return 1 + r % u;
  19.  
  20.